home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
filbx2
/
aboutfb.frm
next >
Wrap
Text File
|
1995-05-08
|
2KB
|
77 lines
VERSION 2.00
Begin Form About
Caption = "About FILEBOX"
ClientHeight = 2940
ClientLeft = 1305
ClientTop = 1800
ClientWidth = 7365
ControlBox = 0 'False
Height = 3345
Left = 1245
LinkMode = 1 'Source
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2940
ScaleWidth = 7365
Top = 1455
Width = 7485
Begin PictureBox Picture1
BorderStyle = 0 'None
Height = 740
Left = 600
Picture = ABOUTFB.FRX:0000
ScaleHeight = 735
ScaleWidth = 495
TabIndex = 0
Top = 360
Width = 495
End
Begin CommandButton Command1
Caption = "I'm Done"
Height = 860
Left = 6000
TabIndex = 3
Top = 240
Width = 975
End
Begin Label what
Height = 1340
Left = 1440
TabIndex = 1
Top = 1440
Width = 5655
End
Begin Label who
Alignment = 2 'Center
Height = 1100
Left = 1680
TabIndex = 2
Top = 120
Width = 3855
End
End
Sub Command1_Click ()
Unload about
End Sub
Sub Form_Load ()
o$ = "by:" + CRLF
o$ = o$ + "Thomas Kiehl" + CRLF
o$ = o$ + "P.O. Box 693" + CRLF
o$ = o$ + "Indian Rocks Beach, FL 34635" + CRLF
o$ = o$ + "Compuserve ID: 73215,427"
A$ = "This is a FILE OPEN dialog box that behaves much" + CRLF
A$ = A$ + "like the open project dialog box in Visual BASIC." + CRLF
A$ = A$ + "It is a conglomeration of ideas, some mine, some others'," + CRLF
A$ = A$ + "some good, some bad. Most of all, IT WORKS!!!!!!!!!" + CRLF
A$ = A$ + "Just click on OPEN from the FILE pulldown menu."
who.caption = o$
what.caption = A$
End Sub